UNPKG

@nadeshikon/plugin-nextjs

Version:
24 lines (21 loc) 513 B
import { useRouter } from 'next/router' export default function Page(props) { const router = useRouter() return ( <> <p id="blog">/blog/[slug]</p> <p id="query">{JSON.stringify(router.query)}</p> <p id="pathname">{router.pathname}</p> <p id="as-path">{router.asPath}</p> <p id="props">{JSON.stringify(props)}</p> </> ) } export function getServerSideProps({ params }) { return { props: { now: Date.now(), params, }, } }